home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 1
/
Gold Medal Software Volume 1 (Gold Medal) (1994).iso
/
prog
/
dasv10_.arj
/
LINEDRAW.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
ISO-8859-9 (detected)
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-08-09
|
152 b
|
12 lines
// util.lib library functions
#include <iostream.h>
void line_draw(void)
{
int i;
cout << "\n";
for (i=0;i<=79;i++) {
cout << "─";
}
}